home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_usrdoc / NCURSES-.{1J / ANNOUNCE.{_3 < prev    next >
Text File  |  1999-09-17  |  10KB  |  223 lines

  1.  
  2.                            ANNOUNCING NCURSES 1.9.9G
  3.                                        
  4.    The ncurses (new curses) library is a freeware emulation of System V
  5.    Release 4.0 curses. It uses terminfo format, supports pads and color
  6.    and multiple highlights and forms characters and function-key mapping,
  7.    and has all the other SYSV-curses enhancements over BSD curses.
  8.    
  9.    In mid-June 1995, the maintainer of 4.4BSD curses declared that he
  10.    considered 4.4BSD curses obsolete, and is encouraging the keepers of
  11.    Unix releases such as BSD/OS, freeBSD and netBSD to switch over to
  12.    ncurses.
  13.    
  14.    The ncurses code was developed under Linux. It should port easily to
  15.    any ANSI/POSIX-conforming UNIX. It has even been ported to OS/2 Warp!
  16.    
  17.    The distribution includes the library and support utilities, including
  18.    a terminfo compiler tic(1), a decompiler infocmp(1), clear(1),
  19.    tput(1), tset(1), and a termcap conversion tool captoinfo(1). Full
  20.    manual pages are provided for the library and tools.
  21.    
  22.    The ncurses distribution is available via anonymous FTP at:
  23.        ftp://ftp.netcom.com/pub/zm/zmbenhal/ncurses.
  24.    It is also carried on the GNU distribution site at
  25.        ftp://prep.ai.mit.edu/pub/gnu.
  26.    Ongoing beta versions are available at
  27.        ftp://ftp.clark.net:/pub/dickey/ncurses.
  28.    
  29.                               FEATURES OF NCURSES
  30.                                        
  31.    The ncurses package is fully compatible with SVr4 curses:
  32.    
  33.      * All 257 of the SVr4 calls have been implemented (and are
  34.        documented).
  35.        
  36.      * Full support for SVr4 curses features including keyboard mapping,
  37.        color, forms-drawing with ACS characters, and automatic
  38.        recognition of keypad and function keys.
  39.        
  40.      * An emulation of the System V Release 4 panels library, supporting
  41.        a stack of windows with backing store, is included.
  42.        
  43.      * An emulation of the System V Release 4 menus library, supporting a
  44.        uniform but flexible interface for menu programming, is included.
  45.        
  46.      * An emulation of the System V Release 4 form library, supporting
  47.        data collection through on-screen forms, is included.
  48.        
  49.      * Binary terminfo entries generated by the ncurses tic(1)
  50.        implementation are bit-for-bit-compatible with the entry format
  51.        SVr4 curses uses.
  52.        
  53.      * The utilities have options to allow you to filter terminfo entries
  54.        for use with less capable _curses_/_terminfo_ versions such as the
  55.        HP/UX and AIX ports.
  56.        
  57.    The ncurses package also has many useful extensions over SVr4:
  58.    
  59.      * The API is 8-bit clean and base-level conformant with the X/OPEN
  60.        curses specification, XSI Curses (that is, it implements all BASE
  61.        level features, but not all EXTENDED features). Most
  62.        EXTENDED-level features not directly concerned with wide-character
  63.        support are implemented, including many function calls not
  64.        supported under SVr4 curses (but portability of all calls is
  65.        documented so you can use the SVr4 subset only).
  66.        
  67.      * Unlike SVr4 curses, ncurses can write to the rightmost-bottommost
  68.        corner of the screen if your terminal has an insert-character
  69.        capability.
  70.        
  71.      * (PC-clone boxes only) Support for access to the IBM PC ROM
  72.        characters 0-32 through the highlight A_ALTCHARSET.
  73.        
  74.      * Support for mouse event reporting under xterm.
  75.        
  76.      * The function wresize() allows you to resize windows, preserving
  77.        their data.
  78.      * Better cursor-movement optimization. The package now features a
  79.        cursor-local-movement computation more efficient than either BSD's
  80.        or System V's.
  81.        
  82.      * Super hardware scrolling support. The screen-update code
  83.        incorporates a novel, simple, and cheap algorithm that enables it
  84.        to make optimal use of hardware scrolling, line-insertion, and
  85.        line-deletion for screen-line movements. This algorithm is more
  86.        powerful than the 4.4BSD curses quickch() routine.
  87.        
  88.      * It is possible to generate the library with a list of pre-loaded
  89.        fallback entries linked to it so that it can serve those terminal
  90.        types even when no terminfo tree or termcap file is accessible
  91.        (this may be useful for support of screen-oriented programs that
  92.        must run in single-user mode).
  93.        
  94.      * The tic(1)/captoinfo utility provided with ncurses has the ability
  95.        to translate many termcaps from the XENIX, IBM and AT&T extension
  96.        sets.
  97.        
  98.      * A BSD-like tset(1) utility is provided.
  99.        
  100.      * The ncurses library and utilities will automatically read terminfo
  101.        entries from $HOME/.terminfo if it exists, and compile to that
  102.        directory if it exists and the user has no write access to the
  103.        system directory. This feature makes it easier for users to have
  104.        personal terminfo entries without giving up access to the system
  105.        terminfo directory.
  106.        
  107.      * You may specify a path of directories to search for compiled
  108.        descriptions with the environment variable TERMINFO_DIRS (this
  109.        generalizes the feature provided by TERMINFO under stock System
  110.        V.)
  111.        
  112.      * In terminfo source files, use capabilities may refer not just to
  113.        other entries in the same source file (as in System V) but also to
  114.        compiled entries in either the system terminfo directory or the
  115.        user's $HOME/.terminfo directory.
  116.        
  117.      * A script (_capconvert_) is provided to help BSD users transition
  118.        from termcap to terminfo. It gathers the information in a TERMCAP
  119.        environment variable and/or a ~/.termcap local entries file and
  120.        converts it to an equivalent local terminfo tree under
  121.        $HOME/.terminfo.
  122.        
  123.      * Automatic fallback to the /etc/termcap file can be compiled in
  124.        when it is not possible to build a terminfo tree. This feature is
  125.        neither fast nor cheap, you don't want to use it unless you have
  126.        to, but it's there.
  127.        
  128.      * The table-of-entries utility _toe_ makes it easy for users to see
  129.        exactly what terminal types are available on the system.
  130.        
  131.      * The library meets the XSI requirement that every macro entry point
  132.        have a corresponding function which may be linked (and will be
  133.        prototype-checked) if the macro definition is disabled with
  134.        #undef.
  135.        
  136.      * An HTML "Introduction to Programming with NCURSES" document
  137.        provides a narrative introduction to the curses programming
  138.        interface.
  139.        
  140.                              STATE OF THE PACKAGE
  141.                                        
  142.    Numerous bugs present in earlier versions have been fixed; the library
  143.    is far more reliable than it used to be. Bounds checking in many
  144.    `dangerous' entry points has been improved. The code is now type-safe
  145.    according to gcc -Wall. The library has been checked for malloc leaks
  146.    and arena corruption by the Purify memory-allocation tester.
  147.    
  148.    The ncurses code has been tested with a wide variety of games and
  149.    utilities, including:
  150.    
  151.    lynx-2.4
  152.           the character-screen WWW browser
  153.           
  154.    bs-2.0
  155.           Battleships game with proper visual interface
  156.           
  157.    greed-3.1
  158.           the game of Greed
  159.           
  160.    nolan-1.1
  161.           the World's Smallest Political Quiz
  162.           
  163.    vh-1.6
  164.           Volks-Hypertext browser for the Jargon File
  165.           
  166.    blue   Blue Moon solitaire game
  167.           
  168.    u386mon
  169.           System performance monitor for SVr4
  170.           
  171.    nvi    New vi alpha versions 1.50 are able to use ncurses versions
  172.           1.9.7 and later.
  173.           
  174.    The ncurses distribution includes a selection of test programs.
  175.    
  176. Who's Who and What's What
  177.  
  178.    The primary maintainer of ncurses is Zeyd Ben-Halim.  Unfortunately, he can
  179.    only work on the package part time.  As a result, since 1.8.1, much of the
  180.    enhancement work and all the documentation has been done by Eric S. 
  181.    Raymond, Thomas Dickey and Juergen Pfeifer).  However, requests for beta
  182.    releases and other queries should properly be directed to Zeyd.
  183.    
  184.    There is an ncurses mailing list. It is a majordomo list; to join,
  185.    write to listserv@netcom.com with a message containing the line:
  186.    
  187.  
  188.              subscribe ncurses-list <name>@<host.domain>
  189.  
  190.    This list is open to anyone interested in helping with the development
  191.    and testing of this package.
  192.    
  193. Future Plans
  194.  
  195.      * Extended mouse support via Alessandro Rubini's gpm package.
  196.      * Extended-level XPG4 conformance, with internationalization
  197.        support.
  198.        
  199.      * Ports to more systems, including DOS and Windows.
  200.        
  201.    We need people to help with these projects. If you are interested in
  202.    working on them, please join the ncurses list.
  203.    
  204. The terminfo/termcap Database
  205.  
  206.    The distribution includes and uses a copy of the terminfo-format
  207.    terminal description file maintained by Eric Raymond. This database
  208.    (which is the official descendant of the 4.4BSD termcap file) changes
  209.    faster than this code does, so you probably want to pick up a new copy
  210.    occasionally.
  211.    
  212.    You can download either the termcap or terminfo versions of the
  213.    terminal-type database from Eric's ncurses resource page,
  214.    http://www.ccil.org/~esr/ncurses.html.
  215.    
  216. Other Related Resources
  217.  
  218.    You can find lots of information on terminal-related topics not
  219.    covered in the terminfo file at Richard Shuford's archive.
  220.      _________________________________________________________________
  221.    
  222.     Eric S. Raymond <esr@snark.thyrsus.com>
  223.